DicomObjects.NET.V8
DicomObjects Namespace / DicomImage Class / Read Method / Read(Byte[],ReadBehaviours) Method

Byte Array to read

The behaviours to be used when reading this stream




In This Topic
    Read(Byte[],ReadBehaviours) Method
    In This Topic
    Reads from a Byte Array
    Syntax
    'Declaration
     
    Public Overloads Sub Read( _
       ByVal Array() As Byte, _
       Optional ByVal readBehaviours As ReadBehaviours _
    ) 
    'Usage
     
    Dim instance As DicomImage
    Dim Array() As Byte
    Dim readBehaviours As ReadBehaviours
     
    instance.Read(Array, readBehaviours)
    public void Read( 
       byte[] Array,
       ReadBehaviours readBehaviours
    )
    public:
    void Read( 
       array<byte>^ Array,
       ReadBehaviours^ readBehaviours
    ) 

    Parameters

    Array

    Byte Array to read

    readBehaviours

    The behaviours to be used when reading this stream

    Remarks
    Reads an array of byte, which may have been written by Write method.
    Requirements

    Target Platforms: .NET CLR 4.0 or higher

    See Also